home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Python 1.1 / python-FAQ.txt < prev    next >
Encoding:
Text File  |  1994-11-06  |  68.8 KB  |  1,619 lines  |  [TEXT/R*ch]

  1. NOTE -- THIS FAQ HAS NOT BEEN UPDATED TO REFLECT RELEASE 1.1 YET.  FOR
  2. 1.1 RELATED PROBLEMS PLEASE WATCH THE NEWSGROUP / MAILING LIST OR
  3. CHECK THE FTP SITE.
  4.  
  5. Subject: FAQ: Python -- an object-oriented language
  6. Newsgroups: comp.lang.python,comp.answers,news.answers
  7. Followup-to: comp.lang.python
  8. From: guido@cwi.nl (Guido van Rossum)
  9. Reply-to: guido@cwi.nl (Guido van Rossum)
  10. Approved: news-answers-request@MIT.Edu
  11.  
  12. Archive-name: python-faq/part1
  13. Version: 1.15
  14. Last-modified: 6 October 1994
  15.  
  16. This article contains answers to Frequently Asked Questions about
  17. Python (an object-oriented interpreted programming language -- see
  18. the answer to question 1.1 for a short overview).
  19.  
  20. Copyright 1993, 1994 Guido van Rossum.  Unchanged electronic
  21. redistribution of this FAQ is allowed.  Printed redistribution only
  22. with permission of the author.  No warranties.
  23.  
  24. Author's address:
  25.     Guido van Rossum
  26.     CWI, dept. CST
  27.     Kruislaan 413
  28.     P.O. Box 94079
  29.     1090 GB  Amsterdam
  30.     The Netherlands
  31. Email:    guido@cwi.nl
  32.  
  33. The latest version of this FAQ is available by anonymous ftp from
  34. ftp.cwi.nl [192.16.191.128] in the directory /pub/python, with
  35. filename python-FAQ.  It will also be posted regularly to the
  36. newsgroups comp.answers and comp.lang.python.
  37.  
  38. Many FAQs, including this one, are available by anonymous ftp from
  39. rtfm.mit.edu [18.181.0.24] in the directory pub/usenet/news.answers.  
  40. The name under which a FAQ is archived appears in the Archive-name line 
  41. at the top of the article.  This FAQ is archived as python-faq/part1.
  42.  
  43. There's a mail server on that machine which will send you files from
  44. the archive by e-mail if you have no ftp access.  You send a e-mail
  45. message to mail-server@rtfm.mit.edu containing the single word help in
  46. the message body to receive instructions.
  47.  
  48. Skip Montanaro <skip@automatrix.com> maintains an HTML version of this
  49. FAQ.  The URL is <http://www.automatrix.com/~skip/python-faq.html>.
  50.  
  51. This FAQ is divided in the following chapters:
  52.  
  53.  1. General information and availability
  54.  2. Python in the real world
  55.  3. Building Python
  56.  4. Programming in Python
  57.  5. Extending Python
  58.  6. Python's design
  59.  7. Using Python on non-UNIX platforms
  60.  
  61. To find the start of a particular chapter, search for the chapter number
  62. followed by a dot and a space at the beginning of a line (e.g. to
  63. find chapter 4 in vi, type /^4\. /).
  64.  
  65. Here's an overview of the questions per chapter:
  66.  
  67.  1. General information and availability
  68.   1.1. Q. What is Python?
  69.   1.2. Q. Why is it called Python?
  70.   1.3. Q. How do I obtain a copy of the Python source?
  71.   1.4. Q. How do I get documentation on Python?
  72.   1.5. Q. Are there other ftp sites that mirror the Python distribution?
  73.   1.6. Q. Is there a newsgroup or mailing list devoted to Python?
  74.   1.7. Q. Is there a book on Python, or will there be one out soon?
  75.   1.8. Q. Are there any published articles about Python that I can quote?
  76.   1.9. Q. How does the Python version numbering scheme work?
  77.   1.10. Q. Are there other ftp sites that carry Python related material?
  78.   1.11. Q. Are there copyright restrictions on the use of Python?
  79.  
  80.  2. Python in the real world
  81.   2.1. Q. How many people are using Python?
  82.   2.2. Q. Have any significant projects been done in Python?
  83.   2.3. Q. Are there any commercial projects going on using Python?
  84.   2.4. Q. How stable is Python?
  85.   2.5. Q. When will the next version be released?
  86.   2.6. Q. What new developments are expected for Python in the future?
  87.   2.7. Q. Is it reasonable to propose incompatible changes to Python?
  88.  
  89.  3. Building Python
  90.   3.1. Q. Is there a test set?
  91.   3.2. Q. When running the test set, I get complaints about floating point
  92.        operations, but when playing with floating point operations I cannot
  93.        find anything wrong with them.
  94.   3.3. Q. Link errors building Python with STDWIN on SGI IRIX.
  95.   3.4. Q. Link errors after rerunning the configure script.
  96.   3.5. Q. The python interpreter complains about options passed to a
  97.        script (after the script name).
  98.   3.6. Q. When building on the SGI, make tries to run python to create
  99.        glmodule.c, but python hasn't been built or installed yet.
  100.   3.7. Q. Python built with gcc for the DEC Alpha doesn't work.
  101.   3.8. Q. I use VPATH but some targets are built in the source directory.
  102.   3.9. Q. Trouble building or linking with the GNU readline library.
  103.   3.10. Q. Trouble building Python on Linux.
  104.   3.11. Q. Other trouble building Python on platform X.
  105.  
  106.  4. Programming in Python
  107.   4.1. Q. Is there a source code level debugger with breakpoints, step,
  108.        etc.?
  109.   4.2. Q. Can I create an object class with some methods implemented in
  110.        C and others in Python (e.g. through inheritance)?  (Also phrased as:
  111.        Can I use a built-in type as base class?)
  112.   4.3. Q. Is there a curses/termcap package for Python?
  113.   4.4. Q. Is there an equivalent to C's onexit() in Python?
  114.   4.5. Q. When I define a function nested inside another function, the
  115.        nested function seemingly can't access the local variables of the
  116.        outer function.  What is going on?  How do I pass local data to a
  117.        nested function?
  118.   4.6. Q. How do I iterate over a sequence in reverse order?
  119.   4.7. Q. My program is too slow.  How do I speed it up?
  120.   4.8. Q. When I have imported a module, then edit it, and import it
  121.        again (into the same Python process), the changes don't seem to take
  122.        place.  What is going on?
  123.   4.9. Q. How do I find the current module name?
  124.   4.10. Q. I have a module in which I want to execute some extra code when it
  125.         is run as a script.  How do I find out whether I am running as a
  126.         script?
  127.   4.11. Q. I try to run a program from the Demo directory but it fails with
  128.         ImportError: No module named ...; what gives?
  129.   4.12. Q. I have successfully built Python with STDWIN but it can't
  130.         find some modules (e.g. stdwinevents).
  131.   4.13. Q. What GUI toolkits exist for Python?
  132.   4.14. Q. Are there any interfaces to database packages in Python?
  133.   4.15. Q. Is it possible to write obfuscated one-liners in Python?
  134.   4.16. Q. Is there an equivalent of C's "?:" ternary operator?
  135.   4.17. Q. My class defines __del__ but it is not called when I delete the
  136.         object.
  137.   4.18. Q. How do I change the shell environment for programs called using
  138.         os.popen() or os.system()?  Changing os.environ doesn't work.
  139.   4.19. Q. What is a class?
  140.   4.20. Q. What is a method?
  141.   4.21. Q. What is self?
  142.   4.22. Q. What is a unbound method?
  143.   4.23. Q. How do I call a method defined in a base class from a derived class
  144.         that overrides it?
  145.   4.24. Q. How do I call a method from a base class without using the name of
  146.         the base class?
  147.   4.25. Q. How can I organize my code to make it easier to change the base
  148.         class?
  149.   4.26. Q. How can I find the methods or attributes of an object?
  150.   4.27. Q. I can't seem to use os.read() on a pipe created with os.popen().
  151.   4.28. Q. How can I create a stand-alone binary from a Python script?
  152.   4.29. Q. Is there a special lib for writing CGI scripts in Python?
  153.   4.30. Q. What other WWW tools are there for Python?
  154.  
  155.  5. Extending Python
  156.   5.1. Q. Can I create my own functions in C?
  157.   5.2. Q. Can I create my own functions in C++?
  158.   5.3. Q. How can I execute arbitrary Python statements from C?
  159.   5.4. Q. How can I evaluate an arbitrary Python expression from C?
  160.   5.5. Q. How do I extract C values from a Python object?
  161.   5.6. Q. How do I use mkvalue() to create a tuple of arbitrary length?
  162.   5.7. Q. What happened to mktuple(), featuring in an example in the
  163.        Extensions manual?
  164.   5.8. Q. How do I call an object's method from C?
  165.   5.9. Q. How do I catch the output from print_error()?
  166.   5.10. Q. How do I access a module written in Python from C?
  167.  
  168.  6. Python's design
  169.   6.1. Q. Why isn't there a generic copying operation for objects in
  170.        Python?
  171.   6.2. Q. Why isn't there a generic way to implement persistent objects
  172.        in Python?  (Persistent == automatically saved to and restored from
  173.        disk.)
  174.   6.3. Q. Why isn't there a switch or case statement in Python?
  175.   6.4. Q. Why does Python use indentation for grouping of statements?
  176.   6.5. Q. Why are Python strings immutable?
  177.   6.6. Q. Why don't strings have methods like index() or sort(), like
  178.        lists?
  179.   6.7. Q. Why does Python use methods for some functionality
  180.        (e.g. list.index()) but functions for other (e.g. len(list))?
  181.   6.8. Q. Why can't I derive a class from built-in types (e.g. lists or
  182.        files)?
  183.   6.9. Q. Why must 'self' be declared and used explicitly in method
  184.        definitions and calls?
  185.   6.10. Q. Can't you emulate threads in the interpreter instead of
  186.         relying on an OS-specific thread implementation?
  187.   6.11. Q. Why can't lambda forms contain statements?
  188.   6.12. Q. Why is there no more efficient way of iterating over a dictionary
  189.         than first constructing the list of keys()?
  190.  
  191.  7. Using Python on non-UNIX platforms
  192.   7.1. Q. Is there a Mac version of Python?
  193.   7.2. Q. Is there a DOS version of Python?
  194.   7.3. Q. Is there a Windows version of Python?
  195.   7.4. Q. Is there a Windows NT version of Python?
  196.   7.5. Q. Is there an OS/2 version of Python?
  197.   7.6. Q. Is there a VMS version of Python?
  198.   7.7. Q. What about IBM mainframes, or other esoteric non-UNIX
  199.        platforms?
  200.   7.8. Q. Where are the source or Makefiles for the non-UNIX versions?
  201.   7.9. Q. What is the status and support for the non-UNIX versions?
  202.   7.10. Q. I have the PC version but it appears to be only a binary.
  203.         Where's the library?
  204.   7.11. Q. Where's the documentation for the Mac or PC version?
  205.   7.12. Q. The Mac (PC) version doesn't seem to have any facilities for
  206.         creating or editing programs apart from entering it interactively, and
  207.         there seems to be no way to save code that was entered interactively.
  208.         How do I create a Python program on the Mac (PC)?
  209.  
  210. To find a particular question, search for the question number followed
  211. by a dot, a space, and a Q at the beginning of a line (e.g. to find
  212. question 4.2 in vi, type /^4\.2\. Q/).
  213.  
  214.  
  215. 1. General information and availability
  216. =======================================
  217.  
  218. 1.1. Q. What is Python?
  219.  
  220. A. Python is an interpreted, interactive, object-oriented programming
  221. language.  It incorporates modules, exceptions, dynamic typing, very
  222. high level dynamic data types, and classes.  Python combines
  223. remarkable power with very clear syntax.  It has interfaces to many
  224. system calls and libraries, as well as to various window systems, and
  225. is extensible in C or C++.  It is also usable as an extension language
  226. for applications that need a programmable interface.  Finally, Python
  227. is portable: it runs on many brands of UNIX, on the Mac, and on
  228. MS-DOS.
  229.  
  230. To find out more, the best thing to do is to start reading the
  231. tutorial from the documentation set (see a few questions further
  232. down).
  233.  
  234. 1.2. Q. Why is it called Python?
  235.  
  236. A. Apart from being a computer wizard, I'm also a fan of "Monty
  237. Python's Flying Circus" (a BBC comedy series from the seventies, in
  238. the -- unlikely -- case you didn't know).  It occurred to me one day
  239. that I needed a name that was short, unique, and slightly mysterious.
  240. And I happened to be reading some scripts from the series at the
  241. time...  So then I decided to call my language Python.  But Python is
  242. not a joke.  And don't you associate it with dangerous reptiles
  243. either!
  244.  
  245. 1.3. Q. How do I obtain a copy of the Python source?
  246.  
  247. A. The latest Python source distribution is always available by
  248. anonymous ftp from ftp.cwi.nl [192.16.191.128] in the directory
  249. /pub/python, with filename python<version>.tar.gz.  (Old versions may
  250. have an extension of .Z, indicating use of "compress" compression.)
  251. It is a gzip'ed tar file containing the complete C source, LaTeX
  252. documentation, Python library modules, example programs, and several
  253. useful pieces of freely distributable software.  This will compile and
  254. run out of the box on most UNIX platforms.  (See section 7 for
  255. non-UNIX information.)
  256.  
  257. 1.4. Q. How do I get documentation on Python?
  258.  
  259. A. The latest Python documentation set is always available by
  260. anonymous ftp from ftp.cwi.nl [192.16.191.128] in the directory
  261. /pub/python, with filename pythondoc-ps<version>.tar.gz.  It is a
  262. gzip'ed tar file containing PostScript files of the reference manual,
  263. the library manual, and the tutorial.  Note that the library manual is
  264. the most important one of the set, as much of Python's power stems
  265. from the standard or built-in types, functions and modules, all of
  266. which are described here.  PostScript for a high-level description of
  267. Python is in the file nluug-paper.ps.
  268.  
  269. 1.5. Q. Are there other ftp sites that mirror the Python distribution?
  270.  
  271. A. The following sites keep mirrors of the Python distribution:
  272.  
  273. Site            IP address     Directory
  274.  
  275. gatekeeper.dec.com    16.1.0.2    /pub/plan/python
  276. ftp.uu.net        192.48.96.9    /languages/python
  277. ftp.wustl.edu        128.252.135.4    /graphics/graphics/sgi-stuff/python
  278. ftp.funet.fi        128.214.6.100    /pub/languages/python
  279. ftp.fu-berlin.de    130.133.1.18    /unix/languages/python (*python* only)
  280. ftp.sunet.se        130.238.127.3    /pub/lang/python
  281. unix.hensa.ac.uk    129.12.43.16    /uunet/languages/python
  282. ftp.sterlng.com         192.124.9.3     /programming/languages/python
  283.  
  284. Or try archie on e.g. "python1." to locate the nearest copy of that
  285. version...
  286.  
  287. 1.6. Q. Is there a newsgroup or mailing list devoted to Python?
  288.  
  289. A. There is a newsgroup, comp.lang.python, and a mailing list.  The
  290. newsgroup and mailing list are gatewayed into each other -- if you can
  291. read news it's unnecessary to subscribe to the mailing list.  Send
  292. e-mail to python-list-request@cwi.nl to (un)subscribe to the mailing
  293. list.  Once you're on, send e-mail tp python-list@cwi.nl to send mail
  294. to the entire mailing list and newsgroup.  Hypermail archives of
  295. (nearly) everything posted to the mailing list (and thus the
  296. newsgroup) are available -- the URL for the complete set of archives
  297. is <http://www.cwi.nl/~guido/hypermail/index.html>.  The raw archives
  298. are also available by ftp from ftp.cwi.nl in /pub/python (and most
  299. mirrors), files mail*.gz.  The uncompressed versions of these files
  300. can be read with the standard UNIX Mail program ("Mail -f file") or
  301. with nn ("nn file").  To read them using MH, you could use "inc -file
  302. file".
  303.  
  304. 1.7. Q. Is there a book on Python, or will there be one out soon?
  305.  
  306. A. I am writing one.  Addison-Wesley is interested.  Optimistically,
  307. it will be published by mid-1995.  Other authors are also working on
  308. books...  (Do you guys want your name mentioned here?)
  309.  
  310. 1.8. Q. Are there any published articles about Python that I can quote?
  311.  
  312. A. So far the only refereed and published article that describes
  313. Python in some detail is:
  314.  
  315.     Guido van Rossum and Jelke de Boer, "Interactively Testing Remote
  316.     Servers Using the Python Programming Language", CWI Quarterly, Volume
  317.     4, Issue 4 (December 1991), Amsterdam, pp 283-303.
  318.  
  319. LaTeX source for this paper is available as part of the Python source
  320. distribution.
  321.  
  322. A more recent high-level description of Python is:
  323.  
  324.     Guido van Rossum, "An Introduction to Python for UNIX/C
  325.     Programmers", in the proceedings of the NLUUG najaarsconferentie
  326.     1993 (dutch UNIX users group meeting November 1993).
  327.     
  328. PostScript for this paper and for the slides used for the accompanying
  329. presentation can be found in the ftp directory mentioned a few
  330. questions earlier, with filenames nluug-paper.ps and nluug-slides.ps,
  331. respectively.
  332.  
  333. 1.9. Q. How does the Python version numbering scheme work?
  334.  
  335. A. Python versions are numbered A.B.C.  A is the major version number
  336. -- it is only incremented for major changes in functionality or source
  337. structure.  B is the minor version number, incremented for less
  338. earth-shattering changes to a release.  C is the patchlevel -- it is
  339. incremented for each new release.  Note that in the past, patches have
  340. added significant changes; in fact the changeover from 0.9.9 to 1.0.0
  341. was the first time that either A or B changed!
  342.  
  343. 1.10. Q. Are there other ftp sites that carry Python related material?
  344.  
  345. A. An interesting ftp site for Python users is ftp.markv.com
  346. (192.122.251.1); the directory pub/python contains a growing
  347. collection of interesting Python scripts.  To submit a script for
  348. inclusion, place it together with a readme file (with extension
  349. .readme) in the publicly writable directory /incoming/python.  This
  350. service is maintained by Lance Ellinghouse <lance@markv.com>.
  351.  
  352. 1.11. Q. Are there copyright restrictions on the use of Python?
  353.  
  354. A. Hardly.  You can do anything you want with the source, as long as
  355. you leave the copyrights in, display those copyrights in any
  356. documentation about Python that you produce, don't use the author's
  357. institute's name in publicity without prior written permission, and
  358. don't hold them responsible for anything (read the actual copyright
  359. for a precise legal wording).
  360.  
  361.  
  362. 2. Python in the real world
  363. ===========================
  364.  
  365. 2.1. Q. How many people are using Python?
  366.  
  367. A. I don't know, but the maximum number of simultaneous subscriptions
  368. to the Python mailing list before it was gatewayed into the newsgroup
  369. was about 180 (several of which were local redistribution lists).  I
  370. believe that many active Python users don't bother to subscribe to the
  371. list, and now that there's a newsgroup the mailing list subscription
  372. is even less meaningful.  I see new names on the newsgroup all the
  373. time and my best guess is that there are currently at least several
  374. thousands of users.
  375.  
  376. 2.2. Q. Have any significant projects been done in Python?
  377.  
  378. A. Here at CWI (the home of Python), we have written a 20,000 line
  379. authoring environment for transportable hypermedia presentations, a
  380. 5,000 line multimedia teleconferencing tool, as well as many many
  381. smaller programs.
  382.  
  383. The University of Virginia uses Python to control a virtual reality
  384. engine.  Contact: Matt Conway <conway@virginia.edu>.
  385.  
  386. If you have done a significant project in Python that you'd like to be
  387. included in the list above, send me email!
  388.  
  389. 2.3. Q. Are there any commercial projects going on using Python?
  390.  
  391. A. Several companies have revealed to me that they are planning or
  392. considering to use Python in a future product.
  393.  
  394. The furthest is Sunrise Software, who already have a product out using
  395. Python -- they use Python for a GUI management application and an SNMP
  396. network management application.  Contact: <info@sunrise.com>.
  397.  
  398. Infoseek is using Python to implement their commercial WWW information
  399. retrieval service.  Contact: <info@infoseek.com>.
  400.  
  401. Michael Powers of daVinci Time & Space is "writing tons-o-python for
  402. interactive television entertainment."  Contact: <powers@dvts.com>.
  403.  
  404. Individuals at many other companies are using Python for
  405. internal development (witness their contributions to the Python
  406. mailing list or newsgroup).
  407.  
  408. Python has also been elected as an extension language by MADE, a
  409. consortium supported by the European Committee's ESPRIT program and
  410. consisting of Bull, CWI and some other European companies.  Contact:
  411. Ivan Herman <ivan@cwi.nl>.
  412.  
  413. If you'd like to be included in the list above, send me email!
  414.  
  415. 2.4. Q. How stable is Python?
  416.  
  417. A. Very stable.  While the current version number would suggest it is
  418. in the early stages of development, in fact new, stable releases
  419. (numbered 0.9.x and 1.0.x) have been coming out roughly every 3 to 6
  420. months for the past four years.
  421.  
  422. 2.5. Q. When will the next version be released?
  423.  
  424. A. I am planning to release 1.1 before October 15.  It will contain
  425. tons of changes, including (again) improved portability, especially
  426. better support for DOS, Windows, Windows NT an the Macintosh.  A few
  427. modules will have been converted to the new naming scheme.  A working
  428. signal module will be present.
  429.  
  430. 2.6. Q. What new developments are expected for Python in the future?
  431.  
  432. A.  A proposal is being worked out to change the semantics of operator
  433. overloading (__add__, __mul__ etc.) to make them more useful for
  434. implementing types that don't resemble numbers.  Additions will be
  435. __call__ (to call an instance as if it were a function) and __eq__,
  436. _lt__ etc. (to override individual comparisons).  A (new) pthreads
  437. interface has been submitted which will be integrated in the next
  438. release.  The X11/Motif interface will be improved.  There are ideas
  439. about built-in help using strings placed into function objects, and
  440. possibly a switch statement.
  441.  
  442. There will be better ports to the Mac, DOS, Windows, Windows NT, and
  443. OS/2.  The Windows ports will support dynamically loaded modules using
  444. DLLs.
  445.  
  446. Also planned is improved support for embedding Python in other
  447. applications, e.g. by renaming most global symbols to have a "Py"
  448. prefix and providing more documentation and threading support.
  449.  
  450. 2.7. Q. Is it reasonable to propose incompatible changes to Python?
  451.  
  452. A. In general, no.  There are already millions of lines of Python code
  453. around the world, so any changes in the language that invalidates more
  454. than a very small fraction of existing programs has to be frowned
  455. upon.  Even if you can provide a conversion program, there still is
  456. the problem of updating all documentation.  Providing a gradual
  457. upgrade path is the only way if a feature has to be changed.
  458.  
  459.  
  460. 3. Building Python
  461. ==================
  462.  
  463. 3.1. Q. Is there a test set?
  464.  
  465. A. Yes, simply do "import testall" (or "import autotest" if you aren't
  466. interested in the output).  The standard modules whose name begins
  467. with "test" together comprise the test.  The test set doesn't test
  468. *all* features of Python but it goes a long way to confirm that a new
  469. port is actually working.  The Makefile contains an entry "make test"
  470. which runs the autotest module.
  471.  
  472. 3.2. Q. When running the test set, I get complaints about floating point
  473. operations, but when playing with floating point operations I cannot
  474. find anything wrong with them.
  475.  
  476. A. The test set makes occasional unwarranted assumptions about the
  477. semantics of C floating point operations.  Until someone donates a
  478. better floating point test set, you will have to comment out the
  479. offending floating point tests and execute similar tests manually.
  480.  
  481. 3.3. Q. Link errors building Python with STDWIN 0.9.8. on SGI IRIX.
  482.  
  483. A. Get STDWIN 0.9.9 from ftp://ftp.cwi.nl/pub/stdwin/stdwin0.9.9.tar.gz.
  484.  
  485. Q. Link errors building Python with STDWIN 0.9.9.
  486.  
  487. A. Probably routines liek 'tereate', 'tenew' etc.  The STDWIN 0.9.9
  488. distribution requires that you add TWO libraries from stdwin to the
  489. line for stdwin in the Setupfile.  Use something like this (all on one
  490. line!):
  491.  
  492. stdwin stdwinmodule.c -I$(STDWIN)/H $(STDWIN)/Packs/textedit/libtextedit.a $(STDWIN)/Ports/x11/libstdwin.a -lX11
  493.  
  494. 3.4. Q. Link errors after rerunning the configure script.
  495.  
  496. A. It is generally necessary to run "make clean" after a configuration
  497. change.
  498.  
  499. 3.5. Q. The python interpreter complains about options passed to a
  500. script (after the script name).
  501.  
  502. A. You are probably linking with GNU getopt, e.g. through -liberty.
  503. Don't.  The reason for the complaint is that GNU getopt, unlike System
  504. V getopt and other getopt implementations, doesn't consider a
  505. non-option to be the end of the option list.  A quick (and compatible)
  506. fix for scripts is to add "--" to the interpreter, like this:
  507.  
  508.     #! /usr/local/bin/python --
  509.  
  510. You can also use this interactively:
  511.  
  512.     python -- script.py [options]
  513.  
  514. 3.6. Q. When building on the SGI, make tries to run python to create
  515. glmodule.c, but python hasn't been built or installed yet.
  516.  
  517. A. Comment out the line mentioning glmodule.c in Setup and build a
  518. python without gl first; install it or make sure it is in your $PATH,
  519. then edit the Setup file again to turn on the gl module, and make
  520. again.  You don't need to do "make clean"; you do need to run "make
  521. Makefile" in the Modules subdirectory (or just run "make" at the
  522. toplevel).
  523.  
  524. 3.7. Q. Python built with gcc for the DEC Alpha doesn't work.
  525.  
  526. People have reported problems with both gcc 2.5.8 and 2.6.0.  The DEC
  527. OSF/1 cc compiler does not have these problems so it's probably gcc's
  528. fault.  One person reported that the problem went away when using -g
  529. instead of -O so this may be an option if you insist on using gcc.  If
  530. someone tracks it down more completely I'd like to hear about it!
  531.  
  532. 3.8. Q. I use VPATH but some targets are built in the source directory.
  533.  
  534. A. On some systems (e.g. Sun), if the target already exists in the
  535. source directory, it is created there instead of in the build
  536. directory.  This is usually because you have previously built without
  537. VPATH.  Try running "make clobber" in the source directory.
  538.  
  539. 3.9. Q. Trouble building or linking with the GNU readline library.
  540.  
  541. A. Consider using readline 2.0.  From the Python 1.1 README:
  542.  
  543. - You can use the GNU readline library to improve the interactive user
  544. interface: this gives you line editing and command history when
  545. calling python interactively. You need to configure build the GNU
  546. readline library before running the configure script. Its sources are
  547. no longer distributed with Python; you can ftp them from any GNU
  548. mirror site, or from its home site:
  549. ftp://slc2.ins.cwru.edu/pub/dist/readline-2.0.tar.gz (or a higher
  550. version number -- using version 1.x is not recommended). Pass the
  551. Python configure script the option --with-readline=DIRECTORY where
  552. DIRECTORY is the absolute pathname of the directory where you've built
  553. the readline library. Some hints on building and using the readline
  554. library:
  555.  
  556. - On SGI IRIX 5, you may have to add the following
  557. to rldefs.h:
  558.  
  559. #ifndef sigmask
  560. #define sigmask(sig) (1L << ((sig)-1))
  561. #endif
  562.  
  563. - On most systems, you will have to add #include "rldefs.h" to the
  564. top of several source files, and if you use the VPATH feature, you
  565. will have to add dependencies of the form foo.o: foo.c to the
  566. Makefile for several values of foo.
  567.  
  568. - The readline library requires use of the termcap library. A
  569. known problem with this is that it contains entry points which
  570. cause conflicts with the STDWIN and SGI GL libraries. The STDWIN
  571. conflict can be solved (and will be, in the next release of
  572. STDWIN) by adding a line saying '#define werase w_erase' to the
  573. stdwin.h file (in the STDWIN distribution, subdirectory H). The
  574. GL conflict has been solved in the Python configure script by a
  575. hack that forces use of the static version of the termcap library.
  576.  
  577. - Check the newsgroup gnu.bash.bugs for specific problems with the
  578. readline library (I don't get this group here but I've been told
  579. that it is the place for readline bugs.)
  580.  
  581. 3.10. Q. Trouble building Python on Linux.
  582.  
  583. A. There shouldn't be any -- I've seen several complaints but more
  584. reports on successful "out-of-the-box" ports on Linux.  The standard
  585. configure script runs just fine on Linux.
  586.  
  587. Q. Trouble with prototypes on Ultrix.
  588.  
  589. A. Ultrix cc seems broken -- use gcc, or edit config.h to #undef
  590. HAVE_PROTOTYPES.
  591.  
  592. 3.11. Q. Other trouble building Python on platform X.
  593.  
  594. A. Please email the details to <guido@cwi.nl> and I'll look into it.
  595.  
  596.  
  597. 4. Programming in Python
  598. ========================
  599.  
  600. 4.1. Q. Is there a source code level debugger with breakpoints, step,
  601. etc.?
  602.  
  603. A. Yes.  Check out module pdb; pdb.help() prints the documentation (or
  604. you can read it as Lib/pdb.doc).  If you use the STDWIN option,
  605. there's also a windowing interface, wdb.  You can write your own
  606. debugger by using the code for pdb or wdb as an example.
  607.  
  608. 4.2. Q. Can I create an object class with some methods implemented in
  609. C and others in Python (e.g. through inheritance)?  (Also phrased as:
  610. Can I use a built-in type as base class?)
  611.  
  612. A. No, but you can easily create a Python class which serves as a
  613. wrapper around a built-in object, e.g. (for dictionaries):
  614.  
  615.     # A user-defined class behaving almost identical
  616.     # to a built-in dictionary.
  617.     class UserDict:
  618.         def __init__(self): self.data = {}
  619.         def __repr__(self): return repr(self.data)
  620.         def __cmp__(self, dict):
  621.             if type(dict) == type(self.data):
  622.                 return cmp(self.data, dict)
  623.             else:
  624.                 return cmp(self.data, dict.data)
  625.         def __len__(self): return len(self.data)
  626.         def __getitem__(self, key): return self.data[key]
  627.         def __setitem__(self, key, item): self.data[key] = item
  628.         def __delitem__(self, key): del self.data[key]
  629.         def keys(self): return self.data.keys()
  630.         def items(self): return self.data.items()
  631.         def values(self): return self.data.values()
  632.         def has_key(self, key): return self.data.has_key(key)
  633.  
  634. 4.3. Q. Is there a curses/termcap package for Python?
  635.  
  636. A. Yes -- Lance Ellinghouse has written a module that interfaces to
  637. System V's "ncurses".  If you know a little curses and some Python,
  638. it's straightforward to use.
  639.  
  640. You could also consider using the "alfa" (== character cell) version
  641. of STDWIN.  (STDWIN == Standard Windows, a portable windowing system
  642. interface by the same author, URL: "ftp://ftp.cwi.nl/pub/stdwin".)  This
  643. will also prepare your program for porting to windowing environments
  644. such as X11 or the Macintosh.
  645.  
  646. 4.4. Q. Is there an equivalent to C's onexit() in Python?
  647.  
  648. A. Yes, if you import sys and assign a function to sys.exitfunc, it
  649. will be called when your program exits, is killed by an unhandled
  650. exception, or (on UNIX) receives a SIGHUP or SIGTERM signal.
  651.  
  652. 4.5. Q. When I define a function nested inside another function, the
  653. nested function seemingly can't access the local variables of the
  654. outer function.  What is going on?  How do I pass local data to a
  655. nested function?
  656.  
  657. A. Python does not have arbitrarily nested scopes.  When you need to
  658. create a function that needs to access some data which you have
  659. available locally, create a new class to hold the data and return a
  660. method of an instance of that class, e.g.:
  661.  
  662.     class MultiplierClass:
  663.         def __init__(self, factor):
  664.             self.factor = factor
  665.         def multiplier(self, argument):
  666.             return argument * self.factor
  667.  
  668.     def generate_multiplier(factor):
  669.         return MultiplierClass(factor).multiplier
  670.  
  671.     twice = generate_multiplier(2)
  672.     print twice(10)
  673.     # Output: 20
  674.  
  675. 4.6. Q. How do I iterate over a sequence in reverse order?
  676.  
  677. A. If it is a list, the fastest solution is
  678.  
  679.     list.reverse()
  680.     try:
  681.         for x in list:
  682.             "do something with x"
  683.     finally:
  684.         list.reverse()
  685.  
  686. This has the disadvantage that while you are in the loop, the list
  687. is temporarily reversed.  If you don't like this, you can make a copy.
  688. This appears expensive but is actually faster than other solutions:
  689.  
  690.     rev = list[:]
  691.     rev.reverse()
  692.     for x in rev:
  693.         <do something with x>
  694.  
  695. If it isn't a list, a more general but slower solution is:
  696.  
  697.     i = len(list)
  698.     while i > 0:
  699.         i = i-1
  700.         x = list[i]
  701.         <do something with x>
  702.  
  703. A more elegant solution, is to define a class which acts as a sequence
  704. and yields the elements in reverse order (solution due to Steve
  705. Majewski):
  706.  
  707.     class Rev:
  708.         def __init__(self, seq):
  709.             self.forw = seq
  710.         def __len__(self):
  711.             return len(self.forw)
  712.         def __getitem__(self, i):
  713.             return self.forw[-(i + 1)]
  714.  
  715. You can now simply write:
  716.  
  717.     for x in Rev(list):
  718.         <do something with x>
  719.  
  720. Unfortunately, this solution is slowest of all, due to the method
  721. call overhead...
  722.  
  723. 4.7. Q. My program is too slow.  How do I speed it up?
  724.  
  725. A. That's a tough one, in general.  There are many tricks to speed up
  726. Python code; I would consider rewriting parts in C only as a last
  727. resort.  One thing to notice is that function and (especially) method
  728. calls are rather expensive; if you have designed a purely OO interface
  729. with lots of tiny functions that don't do much more than get or set an
  730. instance variable or call another method, you may consider using a
  731. more direct way, e.g. directly accessing instance variables.  Also see
  732. the standard module "profile" (described in the file
  733. "python/lib/profile.doc") which makes it possible to find out where
  734. your program is spending most of its time (if you have some patience
  735. -- the profiling itself can slow your program down by an order of
  736. magnitude).
  737.  
  738. 4.8. Q. When I have imported a module, then edit it, and import it
  739. again (into the same Python process), the changes don't seem to take
  740. place.  What is going on?
  741.  
  742. A. For efficiency reasons, Python only reads the module file on the
  743. first time a module is imported (otherwise a program consisting of
  744. many modules, each of which imports the same basic module, would read
  745. the basic module over and over again).  To force a changed module
  746. being read again, do this:
  747.  
  748.     import modname
  749.     reload(modname)
  750.  
  751. Warning: this technique is not 100% fool-proof.  In particular,
  752. modules containing statements like
  753.  
  754.     from modname import some_objects
  755.  
  756. will continue to work with the old version of the imported objects.
  757.  
  758. 4.9. Q. How do I find the current module name?
  759.  
  760. A. A module can find out its own module name by looking at the
  761. (predefined) global variable __name__.  If this has the value
  762. '__main__' you are running as a script.  
  763.  
  764. 4.10. Q. I have a module in which I want to execute some extra code when it
  765. is run as a script.  How do I find out whether I am running as a
  766. script?
  767.  
  768. A. See the previous question.  E.g. if you put the following on the
  769. last line of your module, main() is called only when your module is
  770. running as a script:
  771.  
  772.     if __name__ == '__main__': main()
  773.  
  774. 4.11. Q. I try to run a program from the Demo directory but it fails with
  775. ImportError: No module named ...; what gives?
  776.  
  777. A. This is probably an optional module (written in C!) which hasn't
  778. been configured on your system.  This especially happens with modules
  779. like "stdwin", "gl", "Xt" or "Xm".  For STDWIN and many other modules,
  780. see Modules/Setup.in for info on how to add these modules to your
  781. Python, if it is possible at all.  Sometimes you will have to ftp and
  782. build another package first (e.g. STDWIN).  Sometimes the module only
  783. works on specific platforms (e.g. gl only works on SGI machines).
  784.  
  785. For X-related modules (Xt and Xm) you will have to do more work: they
  786. are currently not part of the standard Python distribution.  You will
  787. have to ftp the file "extensions.tar.gz" file from a Python ftp
  788. repository (e.g. ftp.cwi.nl) and follow the instructions there.  Note:
  789. the X related modules are still somewhat flakey, so don't try this
  790. unless you alread know a bit or two about building X applications on
  791. your platform.
  792.  
  793. See also the next question.
  794.  
  795. 4.12. Q. I have successfully built Python with STDWIN but it can't
  796. find some modules (e.g. stdwinevents).
  797.  
  798. A. There's a subdirectory of the library directory named 'stdwin'
  799. which should be in the default module search path.  There's a line in
  800. Modules/Setup(.in) that you have to enable for this purpose --
  801. unfortunately in the latest release it's not near the other
  802. STDWIN-related lines so it's easy to miss it.
  803.  
  804. 4.13. Q. What GUI toolkits exist for Python?
  805.  
  806. A. Depending on what platform(s) you are aiming at, there are several.
  807.  
  808. - There's a neat object-oriented interface to the Tcl/Tk widget set,
  809. called Tkinter.  You can ftp it from ftp.cwi.nl as
  810. pub/python/tkinter.tar.gz.  This is probably the easiest to install
  811. and use, and the most complete widget set.
  812.  
  813. - The standard Python distribution comes with an interface to STDWIN,
  814. a platform-independent low-level windowing interface (you have to ftp
  815. the source for STDWIN separately, e.g. from ftp.cwi.nl in pub/stdwin
  816. or gatekeeper.dec.com in pub/misc/stdwin).  STDWIN runs under X11 or
  817. the Mac; a Windows port has been attempted but I can't seem to get it
  818. working.  Note that STDWIN is really not powerful enough to implement
  819. a modern GUI (no widgets, etc.) and that I don't have the time to
  820. maintain or extend it, so you may be better off using Tkinter or the
  821. Motif interface, unless you require portability to the Mac (which is
  822. also offered by SUIT, by the way -- see below).
  823.  
  824. - For SGI IRIX only, there's an interface to the complete GL (Graphics
  825. Library -- low level but very good 3D capabilities) as well as to
  826. FORMS (a buttons-and-sliders-etc package built on top of GL by Mark
  827. Overmars -- ftp'able from ftp.cs.ruu.nl in pub/SGI/FORMS).
  828.  
  829. - There's an interface to X11, including the Athena and Motif widget
  830. sets (and a few individual widgets, like Mosaic's HTML widget and
  831. SGI's GL widget) in the Extensions set, which is separately ftp'able
  832. from ftp.cwi.nl as pub/python/extensions.tar.gz.
  833.  
  834. - There's an interface to SUIT, the U of Virginia's Simple User
  835. Interface Toolkit; it can be ftp'ed from uvacs.cs.virginia.edu as
  836. pub/suit/python/SUIT_python.tar.Z.  A PC binary of Python 1.0.2
  837. compiled with DJGPP and with SUIT support built-in has been made
  838. available by Antonio Costa on ftp site asterix.inescn.pt, directory
  839. pub/PC/python, file pyt102su.exe (a self-extracting archive).
  840.  
  841. - There's an interface to WAFE, a Tcl interface to the X11 Motif and
  842. Athena widget sets.  Last I heard about it it was included in the
  843. WAFE 1.0 prerelease, ftp'able from ftp.wu-wien.ac.at as
  844. pub/src/X11/wafe/wafe-1.0.tar.gz-prerelease.
  845.  
  846. 4.14. Q. Are there any interfaces to database packages in Python?
  847.  
  848. A. There's an interface to SYBASE by John Redford
  849. <jredford@lehman.com>.
  850.  
  851. There's also an interface to metalbase by Lance Ellinghouse
  852. <lance@markv.com>.
  853.  
  854. Anthony Baxter <anthony.baxter@aaii.oz.au> has written an interface to
  855. mSQL (mini-SQL).  Ftp it from ftp.cwi.nl:/pub/python/PymSQL.tar.gz.
  856.  
  857. 4.15. Q. Is it possible to write obfuscated one-liners in Python?
  858.  
  859. A. Yes.  See the following three examples, due to Ulf Bartelt:
  860.  
  861. # Primes < 1000
  862. print filter(None,map(lambda y:y*reduce(lambda x,y:x*y!=0,\
  863. map(lambda x,y=y:y%x,range(2,int(pow(y,0.5)+1))),1),range(2,1000)))
  864.  
  865. # First 10 Fibonacci numbers
  866. print map(lambda x,f=lambda x,f:(x<=1) or (f(x-1,f)+f(x-2,f)): f(x,f),\
  867. range(10))
  868.  
  869. # Mandelbrot set
  870. print (lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+y,map(lambda y,\
  871. Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,Sy=Sy,L=lambda yc,Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,i=IM,\
  872. Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro,\
  873. i=i,Sx=Sx,F=lambda xc,yc,x,y,k,f=lambda xc,yc,x,y,k,f:(k<=0)or (x*x+y*y\
  874. >=4.0) or 1+f(xc,yc,x*x-y*y+xc,2.0*x*y+yc,k-1,f):f(xc,yc,x,y,k,f):chr(\
  875. 64+F(Ru+x*(Ro-Ru)/Sx,yc,0,0,i)),range(Sx))):L(Iu+y*(Io-Iu)/Sy),range(Sy\
  876. ))))(-2.1, 0.7, -1.2, 1.2, 30, 80, 24)
  877. #    \___ ___/  \___ ___/  |   |   |__ lines on screen
  878. #        V          V      |   |______ columns on screen
  879. #        |          |      |__________ maximum of "iterations"
  880. #        |          |_________________ range on y axis
  881. #        |____________________________ range on x axis
  882.  
  883. Don't try this at home, kids!
  884.  
  885. 4.16. Q. Is there an equivalent of C's "?:" ternary operator?
  886.  
  887. A. Not directly.  In many cases you can mimic a?b:c with "a and b or
  888. c", but there's a flaw: if b is zero (or empty, or None -- anything
  889. that tests false) then c will be selected instead.  In many cases you
  890. can prove by looking at the code that this can't happen (e.g. because
  891. b is a constant or has a type that can never be false), but in general
  892. this can be a problem.
  893.  
  894. Steve Majewski (or was it Tim Peters?) suggested the following
  895. solution: (a and [b] or [c])[0].  Because [b] is a singleton list it
  896. is never false, so the wrong path is never taken; then applying [0] to
  897. the whole thing gets the b or c that you really wanted.  Ugly, but it
  898. gets you there in the rare cases where it is really inconvenient to
  899. rewrite your code using 'if'.
  900.  
  901. 4.17. Q. My class defines __del__ but it is not called when I delete the
  902. object.
  903.  
  904. A. There are several possible reasons for this.
  905.  
  906. - The del statement does not necessarily call __del__ -- it simply
  907. decrements the object's reference count, and if this reaches zero
  908. __del__ is called.
  909.  
  910. - If your data structures contain circular links (e.g. a tree where
  911. each child has a parent pointer and each parent has a list of
  912. children) the reference counts will never go back to zero.  You'll
  913. have to define an explicit close() method which removes those
  914. pointers.  Please don't ever call __del__ directly -- __del__ should
  915. call close() and close() should make sure that it can be called more
  916. than once for the same object.
  917.  
  918. - If the object has ever been a local variable (or argument, which is
  919. really the same thing) to a function that caught an expression in an
  920. except clause, chances are that a reference to the object still exists
  921. in that function's stack frame as contained in the stack trace.
  922. Normally, deleting (better: assigning None to) sys.exc_traceback will
  923. take care of this.  If you a stack was printed for an unhandled
  924. exception in an interactive interpreter, delete sys.last_traceback
  925. instead.
  926.  
  927. - There is code that deletes all objects when the interpreter exits,
  928. but if your Python has been configured to support threads, it is not
  929. called (because other threads may still be active).  You can define
  930. your own cleanup function using sys.exitfunc (see question 4.4).
  931.  
  932. 4.18. Q. How do I change the shell environment for programs called using
  933. os.popen() or os.system()?  Changing os.environ doesn't work.
  934.  
  935. A. Modifying the environment passed to subshells was left out of the
  936. interpreter because there seemed to be no well-established portable
  937. way to do it.
  938.  
  939. However if all you want is to pass environment variables to the
  940. commands run by os.system() or os.popen(), there's a simple solution:
  941. prefix the command string with a couple of variable assignments and
  942. export statements. I guess the following would be universal for popen
  943. (untested):
  944.  
  945. import os
  946. from commands import mkarg # nifty routine to add shell quoting
  947. def epopen(cmd, mode, env = {}):
  948.     # env is a dictionary of environment variables
  949.     prefix = ''
  950.     for key, value in env.values():
  951.         prefix = prefix + '%s=%s\n' % (key, mkarg(value))
  952.         prefix = prefix + 'export %s\n' % key
  953.     return os.popen(prefix + cmd, mode)
  954.  
  955. 4.19. Q. What is a class?
  956.  
  957. A. A class is the particular object type that is created by executing
  958. a class statement.
  959.  
  960. 4.20. Q. What is a method?
  961.  
  962. A. A method is a function that you normally call as
  963. x.name(arguments...) for some object x.  The word is used for methods
  964. of classes and class instances as well as for methods of built-in
  965. objects.  The latter have a completely different implementation and
  966. only share the way their calls look in Python code.
  967.  
  968. 4.21. Q. What is self?
  969.  
  970. A. Self is merely a conventional name for the first argument of a
  971. method -- i.e. a function defined inside a class definition.  A method
  972. defined as meth(self, a, b, c) should be called as x.meth(a, b, c) for
  973. some instance x of the class in which the definition occurs;
  974. the called method will think it is called as meth(x, a, b, c).
  975.  
  976. 4.22. Q. What is a unbound method?
  977.  
  978. A. An unbound method is a method defined in a class that is not yet
  979. bound to an instance.  You get an unbound method if you ask for a
  980. class attribute that happens to be a function. You get a bound method
  981. if you ask for an instance attribute.  A bound method knows which
  982. instance it belongs to and calling it supplies the instance automatically;
  983. an unbound method only knows which class it wants for its first
  984. argument (a derived class is also OK).  Calling an unbound method
  985. doesn't "magically" derive the first argument from the context -- you
  986. have to provide it explicitly.
  987.  
  988. 4.23. Q. How do I call a method defined in a base class from a derived class
  989. that overrides it?
  990.  
  991. A. If your class definition starts with "class Derived(Base): ..."
  992. then you can call method meth defined in Base (or one of Base's base
  993. classes) as Base.meth(self, arguments...).  Here, Base.meth is an
  994. unbound method (see previous question).
  995.  
  996. 4.24. Q. How do I call a method from a base class without using the name of
  997. the base class?
  998.  
  999. A. DON'T DO THIS.  REALLY.  I MEAN IT.  It appears that you could call
  1000. self.__class__.__bases__[0].meth(self, arguments...) but this fails when
  1001. a doubly-derived method is derived from your class: for its instances,
  1002. self.__class__.__bases__[0] is your class, not its base class -- so
  1003. (assuming you are doing this from within Derived.meth) you would start
  1004. a recursive call.
  1005.  
  1006. 4.25. Q. How can I organize my code to make it easier to change the base
  1007. class?
  1008.  
  1009. A. You could define an alias for the base class, assign the real base
  1010. class to it before your class definition, and use the alias throughout
  1011. your class.  Then all you have to change is the value assigned to the
  1012. alias.  Incidentally, this trick is also handy if you want to decide
  1013. dynamically (e.g. depending on availability of resources) which base
  1014. class to use.  Example:
  1015.  
  1016. BaseAlias = <real base class>
  1017. class Derived(BaseAlias):
  1018.     def meth(self):
  1019.         BaseAlias.meth(self)
  1020.         ...
  1021.  
  1022. 4.26. Q. How can I find the methods or attributes of an object?
  1023.  
  1024. A. This depends on the object type.
  1025.  
  1026. For an instance x of a user-defined class, instance attributes are
  1027. found in the dictionary x.__dict__, and methods and attributes defined
  1028. by its class are found in x.__class__.__bases__[i].__dict__ (for i in
  1029. range(len(x.__class__.__bases__))).  You'll have to walk the tree of
  1030. base classes to find *all* class methods and attributes.
  1031.  
  1032. Many, but not all built-in types define a list of their method names
  1033. in x.__methods__, and if they have data attributes, their names may be
  1034. found in x.__members__.  However this is only a convention.
  1035.  
  1036. For more information, read the source of the standard (but
  1037. undocumented) module newdir.
  1038.  
  1039. 4.27. Q. I can't seem to use os.read() on a pipe created with os.popen().
  1040.  
  1041. A. os.read() is a low-level function which takes a file descriptor (a
  1042. small integer).  os.popen() creates a high-level file object -- the
  1043. same type used for sys.std{in,out,err} and returned by the builtin
  1044. open() function.  Thus, to read n bytes from a pipe p created with
  1045. os.popen(), you need to use p.read(n).
  1046.  
  1047. 4.28. Q. How can I create a stand-alone binary from a Python script?
  1048.  
  1049. The demo script "Demo/scripts/freeze.py" does what you want.  (It's
  1050. actually not a demo but a support tool -- there is some extra code in
  1051. the interpreter to accommodate it.)  It requires that you have the
  1052. Python build tree handy, complete with all the lib*.a files.
  1053.  
  1054. This works by scanning your source recursively for import statements
  1055. (both forms) and looking for the modules on the standard Python path
  1056. as well as in the source directory (for built-in modules).  It then
  1057. "compiles" the modules written in Python to C code (array initializers
  1058. that can be turned into code objects using the marshal module) and
  1059. creates a custom-made config file that only contains those built-in
  1060. modules which are actually used in the program.  It then compiles the
  1061. generated C code and links it with the rest of the Python interpreter
  1062. to form a self-contained binary which acts exactly like your script.
  1063.  
  1064. Unfortunately, the current version is very platform-specific, because
  1065. each platform has its own compilation flags and libraries to link
  1066. with.  You will probably have to edit the freeze.py file to point it
  1067. to the right directories and tell it about the compilation and link
  1068. flags for your platform.  A new version will be released with Python
  1069. 1.1 -- if you want a peek write to my colleague <Jack.Jansen@cwi.nl>.
  1070.  
  1071. 4.29. Q. Is there a special lib for writing CGI scripts in Python?
  1072.  
  1073. A. There's documentation and code for a cgi.py module by Michael McLay
  1074. <mclay@eeel.nist.gov> available from:
  1075.  
  1076.     http://www.eeel.nist.gov/python/
  1077.  
  1078. (For the curious: CGI or Common Gateway Interface is the protocol
  1079. between HTTP servers (WWW servers) and programs/scripts they run to
  1080. perform queries and other tasks that require returning a dynamically
  1081. generated document.)
  1082.  
  1083. 4.30. Q. What other WWW tools are there for Python?
  1084.  
  1085. A. The standard library has a module urllib, which can retrieve most
  1086. commonly used URL types (file, ftp, http, gopher).
  1087.  
  1088. The Demo2/www directory (Demo2 has to be retrieved separately from the
  1089. Python ftp sites) contains some (really old) code to parse HTML and to
  1090. display it.
  1091.  
  1092. Steve Miale <smiale@cs.indiana.edu> has written a modular WWW browser
  1093. called Dancer.  An alpha version can be FTP'ed from
  1094. ftp.cs.indiana.edu:/pub/smiale/dancer.tar.gz.  (There are a few
  1095. articles about Dancer in the (hyper)mail archive.)
  1096.  
  1097.  
  1098. 5. Extending Python
  1099. ===================
  1100.  
  1101. 5.1. Q. Can I create my own functions in C?
  1102.  
  1103. A. Yes, you can create built-in modules containing functions,
  1104. variables, exceptions and even new types in C.  This is explained in
  1105. the document "Extending and Embedding the Python Interpreter" (the
  1106. LaTeX file Doc/ext.tex).  Also read the chapter on dynamic loading.
  1107.  
  1108. 5.2. Q. Can I create my own functions in C++?
  1109.  
  1110. A. Yes, using the C-compatibility features found in C++.  Basically
  1111. you place extern "C" { ... } around the Python include files and put
  1112. extern "C" before each function that is going to be called by the
  1113. Python interpreter.  Global or static C++ objects with constructors
  1114. are probably not a good idea.
  1115.  
  1116. 5.3. Q. How can I execute arbitrary Python statements from C?
  1117.  
  1118. A. The highest-level function to do this is run_command() which takes
  1119. a single string argument which is executed in the context of module
  1120. __main__ and returns 0 for success and -1 when an exception occurred
  1121. (including SyntaxError).  If you want more control, use run_string();
  1122. see the source for run_command() in Python/pythonrun.c.
  1123.  
  1124. 5.4. Q. How can I evaluate an arbitrary Python expression from C?
  1125.  
  1126. A. Call the function run_string() from the previous question with the
  1127. start symbol eval_input; it then parses an expression, evaluates it
  1128. and returns its value.  See exec_eval() in Python/bltinmodule.c.
  1129.  
  1130. 5.5. Q. How do I extract C values from a Python object?
  1131.  
  1132. A. That depends on the object's type.  If it's a tuple,
  1133. gettuplesize(o) returns its length and gettupleitem(o, i) returns its
  1134. i'th item; similar for lists with getlistsize(o) and getlistitem(o,
  1135. i).  For strings, getstringsize(o) returns its length and
  1136. getstringvalue(o) a pointer to its value (note that Python strings may
  1137. contain null bytes so strlen() is not safe).  To test which type an
  1138. object is, first make sure it isn't NULL, and then use
  1139. is_stringobject(o), is_tupleobject(o), is_listobject(o) etc.
  1140.  
  1141. 5.6. Q. How do I use mkvalue() to create a tuple of arbitrary length?
  1142.  
  1143. A. You can't.  Use t = newtupleobject(n) instead, and fill it with
  1144. objects using settupleitem(t, i, o) -- note that this "eats" a
  1145. reference count of o.  Similar for lists with newlistobject(n) and
  1146. setlistitem(l, i, o).  Note that you *must* set all the tuple items to
  1147. some value before you pass the tuple to Python code --
  1148. newtupleobject(n) initializes them to NULL, which isn't a valid Python
  1149. value.
  1150.  
  1151. 5.7. Q. What happened to mktuple(), featuring in an example in the
  1152. Extensions manual?
  1153.  
  1154. A. It's a typo, I meant newtupleobject() (see previous question).
  1155.  
  1156. 5.8. Q. How do I call an object's method from C?
  1157.  
  1158. A. Here's a function (untested) that might become part of the next
  1159. release in some form.  It uses <stdarg.h> to allow passing the
  1160. argument list on to vmkvalue():
  1161.  
  1162. object *call_method(object *inst, char *methodname, char *format, ...)
  1163. {
  1164.     object *method;
  1165.     object *args;
  1166.     object *result;
  1167.     va_list va;
  1168.     method = getattr(inst, methodname);
  1169.     if (method == NULL) return NULL;
  1170.     va_start(va, format);
  1171.     args = vmkvalue(format, va);
  1172.     va_end(va);
  1173.     if (args == NULL) {
  1174.         DECREF(method);
  1175.         return NULL;
  1176.     }
  1177.     result = call_object(method, args);
  1178.     DECREF(method);
  1179.     DECREF(args);
  1180.     return result;
  1181. }
  1182.  
  1183. This works for any instance that has methods -- whether built-in or
  1184. user-defined.  You are responsible for eventually DECREF'ing the
  1185. return value.
  1186.  
  1187. To call, e.g., a file object's "seek" method with arguments 10, 0
  1188. (assuming the file object pointer is "f"):
  1189.  
  1190. res = call_method(f, "seek", "(OO)", 10, 0);
  1191. if (res == NULL) {
  1192.     ... an exception occurred ...
  1193. }
  1194. else {
  1195.     DECREF(res);
  1196. }
  1197.  
  1198. Note that since call_object() *always* wants a tuple for the argument
  1199. list, to call a function without arguments, pass "()" for the format,
  1200. and to call a function with one argument, surround the argument in
  1201. parentheses, e.g. "(i)".
  1202.  
  1203. 5.9. Q. How do I catch the output from print_error()?
  1204.  
  1205. A. (Due to Mark Hammond):
  1206.  
  1207. * in Python code, define an object that supports the "write()" method.
  1208. FWIW, there seems to be a small problem that requires the 'softspace'
  1209. attribute to be defined too (I can't remember exact details of the
  1210. problem).
  1211.  
  1212. * redirect sys.stdout and sys.stderr to this object.
  1213.  
  1214. * call print_error, or just allow the standard traceback mechanism to
  1215. work.
  1216.  
  1217. Then, the output will go wherever your write() method sends it.
  1218.  
  1219. 5.10. Q. How do I access a module written in Python from C?
  1220.  
  1221. A. You can get a pointer to the module object as follows:
  1222.  
  1223.     module = import_module("<modulename>");
  1224.  
  1225. If the module hasn't been imported yet (i.e. it is not yet present in
  1226. sys.modules), this initializes the module; otherwise it simply returns
  1227. the value of sys.modules["<modulename>"].  Note that it doesn't enter
  1228. the module into any namespace -- it only ensures it has been
  1229. initialized and is stored in sys.modules.
  1230.  
  1231. You can then access the module's attributes (i.e. any name defined in
  1232. the module) as follows:
  1233.  
  1234.     attr = getattr(module, "<attrname>");
  1235.  
  1236. Calling setattr(), to assign to variables in the module, also works.
  1237.  
  1238.  
  1239. 6. Python's design
  1240. ==================
  1241.  
  1242. 6.1. Q. Why isn't there a generic copying operation for objects in
  1243. Python?
  1244.  
  1245. A. Hmm.  Maybe there should be one, but it's difficult to assign a
  1246. useful meaning to copying of open files, sockets and windows, or
  1247. recursive data structures.  As long as you design all your classes
  1248. yourself you are of course free to define a standard base class that
  1249. defines an overridable copying operation for all the objects you care
  1250. about.  (One practical point: it would have to be a built-in function,
  1251. not a standard method name, since not all built-in object types have
  1252. methods; e.g. strings, integers and tuples don't.)
  1253.  
  1254. 6.2. Q. Why isn't there a generic way to implement persistent objects
  1255. in Python?  (Persistent == automatically saved to and restored from
  1256. disk.)
  1257.  
  1258. A. Hmm, hmm.  Basically for the same reasons as why there is no
  1259. generic copying operation.
  1260.  
  1261. However, since there is a real desire to have persistent operations,
  1262. I'm thinking of extending the marshal module to support object sharing
  1263. (and hence recursive objects) and to extend the list of supported
  1264. types considerably.  For user-defined classes, hooks with __*__ names
  1265. will allow the class to modify the way their instances are dumped and
  1266. loaded.  Built-in types (including those defined by new extensions)
  1267. may also define dump/load hooks.  There are several problems still to
  1268. solve, e.g. how do you reliably find the class of which an object is
  1269. an instance at load time -- assuming the class itself is loaded from
  1270. some module, and not part of the dumped data.  It is also necessary to
  1271. separate the functionality of converting a set of objects into a byte
  1272. stream from which they can be reloaded, from the ability to save these
  1273. byte streams as files and being able to reference an object by a
  1274. persistent global name.
  1275.  
  1276. 6.3. Q. Why isn't there a switch or case statement in Python?
  1277.  
  1278. A. You can do this easily enough with a sequence of
  1279. if... elif... elif... else.  There have been some proposals for switch
  1280. statement syntax, but there is no consensus (yet) on whether and how
  1281. to do range tests.
  1282.  
  1283. 6.4. Q. Why does Python use indentation for grouping of statements?
  1284.  
  1285. A. Basically I believe that using indentation for grouping is
  1286. extremely elegant and contributes a lot to the clarity of the average
  1287. Python program.  Most people learn to love this feature after a while.
  1288. Some arguments for it:
  1289.  
  1290. - Since there are no begin/end brackets there cannot be a disagreement
  1291. between grouping perceived by the parser and the human reader.  I
  1292. remember long ago seeing a C fragment like this:
  1293.  
  1294.     if (x <= y)
  1295.         x++;
  1296.         y--;
  1297.     z++;
  1298.  
  1299. and staring a long time at it wondering why y was being decremented
  1300. even for x > y...  (And I wasn't a C newbie then either.)
  1301.  
  1302. - Since there are no begin/end brackets there can be no conflicting
  1303. coding styles.  In C there are loads of different ways to place the
  1304. braces (including the choice whether to place braces around single
  1305. statements in certain cases, for consistency).  If you're used to
  1306. reading (and writing) code that uses one style, you will feel at least
  1307. slightly uneasy when reading (or being required to write) another
  1308. style.
  1309.  
  1310. - Many coding styles place begin/end brackets on a line by themself.
  1311. This makes programs considerably longer and wastes valuable screen
  1312. space, making it harder to get a good overview over a program.
  1313. Ideally, a function should fit on one basic tty screen (say, 20
  1314. lines).  20 lines of Python are worth a LOT more than 20 lines of C.
  1315. This is not solely due to the lack of begin/end brackets (the lack of
  1316. declarations also helps, and the powerful operations of course), but
  1317. it certainly helps!
  1318.  
  1319. 6.5. Q. Why are Python strings immutable?
  1320.  
  1321. A. There are two advantages.  One is performance: knowing that a
  1322. string is immutable makes it easy to lay it out at construction time
  1323. -- fixed and unchanging storage requirements.  (This is also one of
  1324. the reasons for the distinction between tuples and lists.)  The
  1325. other is that strings in Python are considered as "elemental" as
  1326. numbers.  No amount of activity will change the value 8 to anything
  1327. else, and in Python, no amount of activity will change the string
  1328. "eight" to anything else.  (Adapted from Jim Roskind)
  1329.  
  1330. 6.6. Q. Why don't strings have methods like index() or sort(), like
  1331. lists?
  1332.  
  1333. A. Good question.  Strings currently don't have methods at all
  1334. (likewise tuples and numbers).  Long ago, it seemed unnecessary to
  1335. implement any of these functions in C, so a standard library module
  1336. "string" written in Python was created that performs string related
  1337. operations.  Since then, the cry for performance has moved most of
  1338. them into the built-in module strop (this is imported by module
  1339. string, which is still the preferred interface, without loss of
  1340. performance except during initialization).  Some of these functions
  1341. (e.g. index()) could easily be implemented as string methods instead,
  1342. but others (e.g. sort()) can't, since their interface prescribes that
  1343. they modify the object, while strings are immutable (see the previous
  1344. question).
  1345.  
  1346. 6.7. Q. Why does Python use methods for some functionality
  1347. (e.g. list.index()) but functions for other (e.g. len(list))?
  1348.  
  1349. A. Functions are used for those operations that are generic for a
  1350. group of types and which should work even for objects that don't have
  1351. methods at all (e.g. numbers, strings, tuples).  Also, implementing
  1352. len(), max(), min() as a built-in function is actually less code than
  1353. implementing them as methods for each type.  One can quibble about
  1354. individual cases but it's really too late to change such things
  1355. fundamentally now.
  1356.  
  1357. 6.8. Q. Why can't I derive a class from built-in types (e.g. lists or
  1358. files)?
  1359.  
  1360. A. This is caused by the relatively late addition of (user-defined)
  1361. classes to the language -- the implementation framework doesn't easily
  1362. allow it.  See the answer to question 4.2 for a work-around.  This
  1363. *may* be fixed in the (distant) future.
  1364.  
  1365. 6.9. Q. Why must 'self' be declared and used explicitly in method
  1366. definitions and calls?
  1367.  
  1368. A. By asking this question you reveal your C++ background. :-)
  1369. When I added classes, this was (again) the simplest way of
  1370. implementing methods without too many changes to the interpreter.  I
  1371. borrowed the idea from Modula-3.  It turns out to be very useful, for
  1372. a variety of reasons.
  1373.  
  1374. First, it makes it more obvious that you are using a method or
  1375. instance attribute instead of a local variable.  Reading "self.x" or
  1376. "self.meth()" makes it absolutely clear that an instance variable or
  1377. method is used even if you don't know the class definition by heart.
  1378. In C++, you can sort of tell by the lack of a local variable
  1379. declaration (assuming globals are rare or easily recognizable) -- but
  1380. in Python, there are no local variable declarations, so you'd have to
  1381. look up the class definition to be sure.
  1382.  
  1383. Second, it means that no special syntax is necessary if you want to
  1384. explicitly reference or call the method from a particular class.  In
  1385. C++, if you want to use a method from base class that is overridden in
  1386. a derived class, you have to use the :: operator -- in Python you can
  1387. write baseclass.methodname(self, <argument list>).  This is
  1388. particularly useful for __init__() methods, and in general in cases
  1389. where a derived class method wants to extend the base class method of
  1390. the same name and thus has to call the base class method somehow.
  1391.  
  1392. Lastly, for instance variables, it solves a syntactic problem with
  1393. assignment: since local variables in Python are (by definition!) those
  1394. variables to which a value assigned in a function body (and that
  1395. aren't explicitly declared global), there has to be some way to tell
  1396. the interpreter that an assignment was meant to assign to an instance
  1397. variable instead of to a local variable, and it should preferably be
  1398. syntactic (for efficiency reasons).  C++ does this through
  1399. declarations, but Python doesn't have declarations and it would be a
  1400. pity having to introduce them just for this purpose.  Using the
  1401. explicit "self.var" solves this nicely.  Similarly, for using instance
  1402. variables, having to write "self.var" means that references to
  1403. unqualified names inside a method don't have to search the instance's
  1404. directories.
  1405.  
  1406. 6.10. Q. Can't you emulate threads in the interpreter instead of
  1407. relying on an OS-specific thread implementation?
  1408.  
  1409. A. Unfortunately, the interpreter pushes at least one C stack frame
  1410. for each Python stack frame.  Also, extensions can call back into
  1411. Python at almost random moments.  Therefore a complete threads
  1412. implementation requires thread support for C.
  1413.  
  1414. 6.11. Q. Why can't lambda forms contain statements?
  1415.  
  1416. A. Python lambda forms cannot contain statements because Python's
  1417. syntactic framework can't handle statements nested inside functions.
  1418.  
  1419. However, in Python, this is not a serious problem.  Unlike lambda
  1420. forms in other languages, where they add functionality, Python lambdas
  1421. are only a shorthand notation if you're too lazy to define a function.
  1422.  
  1423. Functions are already first class objects in Python, and can be
  1424. declared in a local scope.  Therefore the only advantage of using a
  1425. lambda form instead of a locally-defined function is that you'll have
  1426. to invent a name for the function -- but that's just a local variable
  1427. to which the function object (which is exactly the same type of object
  1428. that a lambda form yields) is assigned!
  1429.  
  1430. 6.12. Q. Why is there no more efficient way of iterating over a dictionary
  1431. than first constructing the list of keys()?
  1432.  
  1433. A. Have you tried it?  I bet it's fast enough for your purposes!  In
  1434. most cases such a list takes only a few percent of the space occupied
  1435. by the dictionary -- it needs only 4 bytes (the size of a pointer) per
  1436. key -- a dictionary costs 8 bytes per key plus between 30 and 70
  1437. percent hash table overhead, plus the space for the keys and values --
  1438. by necessity all keys are unique objects and a string object (the most
  1439. common key type) costs at least 18 bytes plus the length of the
  1440. string.  Add to that the values contained in the dictionary, and you
  1441. see that 4 bytes more per item really isn't that much more memory...
  1442.  
  1443. A call to dict.keys() makes one fast scan over the dictionary
  1444. (internally, the iteration function does exist) copying the pointers
  1445. to the key objects into a pre-allocated list object of the right size.
  1446. The iteration time isn't lost (since you'll have to iterate anyway --
  1447. unless in the majority of cases your loop terminates very prematurely
  1448. (which I doubt since you're getting the keys in random order).
  1449.  
  1450. I don't expose the dictionary iteration operation to Python
  1451. programmers because the dictionary shouldn't be modified during the
  1452. entire iteration -- if it is, there's a very small chance that the
  1453. dictionary is reorganized because the hash table becomes too full, and
  1454. then the iteration may miss some items and see others twice.  Exactly
  1455. because this only occurs rarely, it would lead to hidden bugs in
  1456. programs: it's easy never to have it happen during test runs if you
  1457. only insert or delete a few items per iteration -- but your users will 
  1458. surely hit upon it sooner or later.
  1459.  
  1460.  
  1461. 7. Using Python on non-UNIX platforms
  1462. =====================================
  1463.  
  1464. 7.1. Q. Is there a Mac version of Python?
  1465.  
  1466. A. Yes.  It is on most ftp sites carrying Python as python.sea.hqx --
  1467. this is a self-extracting archive containing the application binary as
  1468. well as the Lib modules.
  1469.  
  1470. 7.2. Q. Is there a DOS version of Python?
  1471.  
  1472. A. Yes.  More than one, actually: 16python.exe runs in standard DOS
  1473. mode on 186 CPUs or higher; 32python.exe uses a DOS extender and only
  1474. runs on a 386 or higher CPUs.  Although 16python.exe does not pass the
  1475. test set because test_grammar is too big for the parser, it actually
  1476. has about 270 kbyte of allocatable heap space, which is sufficient for
  1477. fairly large programs.  32python.exe is distributed as a tar file
  1478. containing the required DOS extended and 387 emulator.  Both are on
  1479. most ftp sites carrying Python.
  1480.  
  1481. The file dosbuild.tar.gz on the standard ftp sites
  1482. (e.g. ftp.cwi.nl:/pub/python/) contains rudimentary Makefiles and
  1483. instructions.
  1484.  
  1485. 7.3. Q. Is there a Windows version of Python?
  1486.  
  1487. A. Yes.  Use qwpython.exe.  The only problem with it: ^C
  1488. unconditionally kills the entire program -- it does not raise
  1489. KeyboardInterrupt.  You can also run 16python.exe or 32python.exe in a
  1490. "DOS box", but qwpython.exe appears to be slightly faster.
  1491.  
  1492. There aren't any Makefiles at this moment.  Sorry.
  1493.  
  1494. Using Win32s (a free NT compatibility package by Microsoft) you can
  1495. also use the NT version by Mark Hammond -- the Win32s package is also
  1496. in that directory (you'll need several MB of disk space to install
  1497. it).  See the next question.
  1498.  
  1499. 7.4. Q. Is there a Windows NT version of Python?
  1500.  
  1501. A. Yes.  Use ntpython.exe.  This is for Intel CPUs.  If you want a
  1502. Windows user interface, use qwpython.exe.
  1503.  
  1504. Mark Hammond <MHammond@cmutual.com.au> is building a better NT port.
  1505. This supports using DLLs for dynamic loading of Python modules, and
  1506. includes an interface to the Microsoft Foundation Classes and a Python
  1507. programming environment using it that's written mostly in Python.  A
  1508. prerelease (source and binaries) can be ftp'ed from
  1509. ftp.cwi.nl:/pub/python/nt/ -- most mirrors will also have this.  A
  1510. thread module is also planned but currently low on Mark's list of
  1511. priorities.
  1512.  
  1513. To build Python for the Windows NT on the DEC Alpha AXP, retrieve a
  1514. zipfile with Makefiles for NT from the following URL:
  1515. "ftp://ftp.ksc.nasa.gov/pub.win3.private.proto/python-make.zip".  This
  1516. was contributed by Sam Rushing <rushing@squirl.oau.org>.
  1517.  
  1518. Note that currently there is no unified compilation environment for
  1519. all NT platforms -- hopefully Microsoft will fix this with the release
  1520. of Visual C++ 2.0.
  1521.  
  1522. 7.5. Q. Is there an OS/2 version of Python?
  1523.  
  1524. A. Yes.  You can ftp it (from ftp.cwi.nl in pub/python, or from the
  1525. mirror sites) as pyth_os2.zip.  This contains both an executable and
  1526. Makefiles for those fortunate enough to have a C compiler.
  1527.  
  1528. 7.6. Q. Is there a VMS version of Python?
  1529.  
  1530. A. I think not (yet).  This question has been asked on the list
  1531. several times and I've never seen an answer.  Maybe someone with a VMS
  1532. C compiler could attempt a port?  Probably coming up with proper
  1533. Makefiles, config.h and config.c should be sufficient.  If you succeed
  1534. (or even if you get stuck halfway), please let me know!  (Info as of
  1535. 23 September 1994.)
  1536.  
  1537. 7.7. Q. What about IBM mainframes, or other esoteric non-UNIX
  1538. platforms?
  1539.  
  1540. A. Basically, the same story as for VMS...  (Info as of 23 September
  1541. 1994.)
  1542.  
  1543. For ports of Windows NT to non-Intel platforms, the normal NT port
  1544. should work except you may have to use a different Makefile.
  1545. (Unconfirmed suggestions from the Python list.)
  1546.  
  1547. 7.8. Q. Where are the source or Makefiles for the non-UNIX versions?
  1548.  
  1549. A. The standard sources can (almost) be used. See the previous
  1550. questions for availability of Makefiles/projects or patches.  If you
  1551. find things in the standard sources that don't work on your particular
  1552. platform, please let me know and I'll integrate a solution into the
  1553. next release of the standard sources.  If you submit a fix, please use
  1554. some kind of #ifdef so as to keep the source working for other
  1555. platforms.  In particular, if the patch works around the availability
  1556. of a particular function of header file, you should mimic the
  1557. HAVE_... style used by the configure script -- you can then submit a
  1558. config.h file for a particular platform so there are no absolutely
  1559. platform-specific #ifdefs in the rest of the sources.
  1560.  
  1561. 7.9. Q. What is the status and support for the non-UNIX versions?
  1562.  
  1563. A. I don't have access to most of these platforms, so in general I am
  1564. dependent on material submitted by volunteers(*).  However I strive to
  1565. integrate all changes needed to get it to compile on a particular
  1566. platform back into the standard sources, so porting of the next
  1567. version to the various non-UNIX platforms should be easy.
  1568.  
  1569. (*) For the Macintosh, that volunteer is me.
  1570.  
  1571. 7.10. Q. I have the PC version but it appears to be only a binary.
  1572. Where's the library?
  1573.  
  1574. A. You still need to copy the files from the distribution directory
  1575. "python/Lib" to your system.  If you don't have the full distribution,
  1576. you can get the file pythonlib<version>.tar.gz from most ftp sites
  1577. carrying Python; this is a subset of the distribution containing just
  1578. those file.
  1579.  
  1580. Once you have installed the library, you need to point sys.path to it.
  1581. Assuming the library is in C:\misc\python\lib, the following commands
  1582. will point your Python interpreter to it (note the doubled backslashes
  1583. -- you can also use single forward slashes instead):
  1584.  
  1585.     >>> import sys
  1586.     >>> sys.path.insert(0, 'C:\\misc\\python\\lib')
  1587.     >>>
  1588.  
  1589. For a more permanent effect, set the environment variable PYTHONPATH,
  1590. as follows (talking to a DOS prompt):
  1591.  
  1592.     C> SET PYTHONPATH=C:\misc\python\lib
  1593.  
  1594. 7.11. Q. Where's the documentation for the Mac or PC version?
  1595.  
  1596. A. There isn't any.  The documentation for the Unix version also
  1597. applies to the Mac and PC versions.  Where applicable, differences
  1598. are indicated in the text.
  1599.  
  1600. 7.12. Q. The Mac (PC) version doesn't seem to have any facilities for
  1601. creating or editing programs apart from entering it interactively, and
  1602. there seems to be no way to save code that was entered interactively.
  1603. How do I create a Python program on the Mac (PC)?
  1604.  
  1605. A. Use an external editor.  On the Mac, BBEdit seems to be a popular
  1606. no-frills text editor.  I work like this: start the interpreter; edit
  1607. a module file using BBedit; import and test it in the interpreter;
  1608. edit again in BBedit; then use the built-in function reload() to
  1609. re-read the imported module; etc.
  1610.  
  1611. Regarding the same question for the PC, Kurt Wm. Hemr writes: "While
  1612. anyone with a pulse could certainly figure out how to do the same on
  1613. MS-Windows, I would recommend the NotGNU Emacs clone for MS-Windows.
  1614. Not only can you easily resave and "reload()" from Python after making
  1615. changes, but since WinNot auto-copies to the clipboard any text you
  1616. select, you can simply select the entire procedure (function) which
  1617. you changed in WinNot, switch to QWPython, and shift-ins to reenter
  1618. the changed program unit."
  1619.